-
Notifications
You must be signed in to change notification settings - Fork 684
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: LANDs section race condition #2197
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -449,3 +453,35 @@ describe('when handling the transfer NFT request action', () => { | |||
}) | |||
}) | |||
}) | |||
|
|||
describe('when handling the connect wallet success action', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you mind moving some of the other tests that were deleted here to cover most of the execution cases?
const view = getView(state) | ||
const loadingState = getLoadingNFTs(state).filter(loading => loading.payload.options.view === view) | ||
const assets = getBrowseAssets(state, section, assetType) | ||
const loadingStateFilteredByView = loadingState.filter(ls => ls.payload.options.view === View.MARKET) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As the AssetList
component is used in a lot of places, will this restriction affect other places that don't share the Market view?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, send it 🚀
No description provided.